/* Center the form in the middle of the screen */
.signup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* full viewport height */
  background-color: #f8f9fa; /* optional background */
}

/* Style the form as a card */
.signup-form {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  width: 350px;  /* makes it square-ish */
  max-width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.wmdb-logo {
    background-color: #f5c518;
    color: #000 !important;
    font-family: 'Impact', 'Arial Black', Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 2.2rem;
    padding: 12px 0; /* more vertical padding for rectangle look */
    border-radius: 5px;
    display: block;
    text-decoration: none !important;
    width: 100%; /* full width of form */
    margin-bottom: 20px; /* space between logo and "Sign Up" */
}
.btn-wmdb {
    background-color: #f5c518 !important; /* same as logo, !important forces it */
    color: #000 !important;               /* black text */
    font-weight: 500;
    border: none;
    border-radius: 5px;                   /* matches logo style */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* subtle shadow like logo */
}

.btn-wmdb:hover {
    background-color: #e0b816 !important; /* slightly darker on hover */
    color: #000 !important;
}
